.banner {
  position: relative;
  margin-top: 80px;
  width: 100%;
  height: 560px;
}

.banner_bg {
  width: 100%;
  height: 100%;
}

.banner_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_text {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}

.banner_text h2 {
  font-size: 50px;
  color: #0565C0;
  margin-bottom: 20px;
  font-weight: 700;
}

.banner_text p {
  font-size: 50px;
  color: #0565C0;
  font-weight: 700;
}

.news_details {
  width: 100%;
  padding: 80px 0;
}

.news_details .news_details_bd {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.news_details .news_tex h2 {
  font-weight: 500;
  font-size: 26px;
  color: #0A0F1C;
  line-height: 36px;
  text-align: center;
  font-style: normal;
  text-transform: none
}


.news_details .news_content {
  width: 100%;
  height: 100%;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-weight: 400;
  font-size: 14px;
  color: #A2A3A6;
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.news_details .news_content .iconfont {
  margin-right: 10px;
}

.news_details .news_content_text {
  padding: 30px 0;
  font-weight: 400;
  font-size: 18px;
  color: #6E6F73;
  line-height: 36px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  border-top: 1px solid #EAEAEB;
  border-bottom: 1px solid #EAEAEB;
}

.news_details .news_content_text p {
  margin-bottom: 20px;
}

.news_details .news_content_img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.news_details .news_content_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news_prev_next {
  width: 100%;
  height: 100%;
  padding-top: 30px;
}

.news_prev_next a {
  font-weight: 400;
  font-size: 14px;
  color: #6E6F73;
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.news_prev_next .prev {
  margin-bottom: 10px;
}

.news_prev_next span:hover {
  color: #FF0000;
  text-decoration: underline;
}

/* 响应式布局 */
@media (max-width: 1200px) {
  .banner {
    height: 400px;
  }

  .banner_text h2,
  .banner_text p {
    font-size: 38px;
  }
}

@media (max-width: 992px) {
  .banner {
    height: 350px;
  }

  .banner_text {
    display: none;
  }

  .news_details {
    padding: 60px 0;
  }

  .news_details .news_tex h2 {
    font-size: 22px;
    line-height: 32px;
  }

  .news_details .news_content_text {
    font-size: 16px;
    line-height: 32px;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 200px;
  }

  .banner_text {
    display: none;
  }

  .news_details {
    padding: 40px 0;
  }

  .news_details .news_content {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
  }

  .news_details .news_tex h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .news_details .news_content_text {
    font-size: 14px;
    line-height: 28px;
    padding: 20px 0;
  }

  .news_details .news_content_text p {
    margin-bottom: 20px;
  }

  .news_details .news_content_img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .news_prev_next {
    padding-top: 20px;
  }

  .news_prev_next a {
    font-size: 12px;
  }
}
